package no.dusken.aranea.spring; import org.springframework.context.annotation.Bean; import java.util.Arrays; import java.util.List; /** * @author Marvin B. Lillehaug <lillehau@underdusken.no> */ @org.springframework.context.annotation.Configuration public class Configuration { @Bean(name = "exposedBeanNames") public List<String> exposedBeanNames(){ return Arrays.asList("authenticationManager", "compass", "transactionManager", "validator", "mailCleaner", "personsEditor", "timeEditor", "sectionEditor", "calendarEditor", "checkBoxEditor", "rolesEditor", "tagsEditor", "pageImageService", "imageCaptchaService", "mailSender", "imageDirectory" ); } }